If a syntax error happens in the ArcDir script, it will jump to here, we'll
pass the result code, the error message and the line number to the routine
that will call the translate and display routines.
It's routine stuff.
1syntax:
2 call displayerror('Syntax Error' rc',' errortext(rc) 'in line' sigl'.')
3 exit
Line:
1 Sub-routine label, in this case, for syntax errors.
2 Call the displayerror routine with RC, error text and line number.
3 It was a terminal error, so we exit.
|